From 219936933d4bfc59c1b5083b8b7c7a8489361ea3 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sat, 27 Jun 2015 00:07:22 +0200 Subject: [PATCH] test: names used in .cargo/config are new-foo and new-bar, so match them --- tests/test_cargo_new.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cargo_new.rs b/tests/test_cargo_new.rs index b885a49fc..bf1840315 100644 --- a/tests/test_cargo_new.rs +++ b/tests/test_cargo_new.rs @@ -184,9 +184,9 @@ test!(finds_author_git { }); test!(author_prefers_cargo { - my_process("git").args(&["config", "--global", "user.name", "bar"]) + my_process("git").args(&["config", "--global", "user.name", "foo"]) .exec().unwrap(); - my_process("git").args(&["config", "--global", "user.email", "baz"]) + my_process("git").args(&["config", "--global", "user.email", "bar"]) .exec().unwrap(); let root = paths::root(); fs::create_dir(&root.join(".cargo")).unwrap(); -- 2.30.2